home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 7 / Night Owl Shareware (NOPV7)(Night Owl Publisher Inc.)(1992).bin / 038a / bash1_12.arj / BASH1-12.TAR / bash-1.12 / builtins / times.def < prev    next >
Text File  |  1992-01-21  |  3KB  |  93 lines

  1. This file is times.def, from which is created times.c.
  2. It implements the builtin "times" in Bash.
  3.  
  4. Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc.
  5.  
  6. This file is part of GNU Bash, the Bourne Again SHell.
  7.  
  8. Bash is free software; you can redistribute it and/or modify it under
  9. the terms of the GNU General Public License as published by the Free
  10. Software Foundation; either version 1, or (at your option) any later
  11. version.
  12.  
  13. Bash is distributed in the hope that it will be useful, but WITHOUT ANY
  14. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  16. for more details.
  17.  
  18. You should have received a copy of the GNU General Public License along
  19. with Bash; see the file COPYING.  If not, write to the Free Software
  20. Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. $PRODUCES times.c
  23.  
  24. $BUILTIN times
  25. $FUNCTION times_builtin
  26. $SHORT_DOC times
  27. Print the accumulated user and system times for processes run from
  28. the shell.
  29. $END
  30.  
  31. #include "../shell.h"
  32. #include <sys/types.h>
  33. #if defined (hpux) || defined (USGr4) || defined (XD88)
  34. #  undef HAVE_RESOURCE
  35. #endif /* hpux || USGr || XD88 */
  36.  
  37. #if defined (HAVE_RESOURCE)
  38. #  include <sys/time.h>
  39. #  include <sys/resource.h>
  40. #else /* !HAVE_RESOURCE */
  41. #  include <sys/times.h>
  42. #endif /* !HAVE_RESOURCE */
  43.  
  44. /* Print the totals for system and user time used.  The
  45.    information comes from variables in jobs.c used to keep
  46.    track of this stuff. */
  47. times_builtin (list)
  48.      WORD_LIST *list;
  49. {
  50. #if defined (HAVE_RESOURCE) && defined (RUSAGE_SELF)
  51.   struct rusage self, kids;
  52.  
  53.   no_args (list);
  54.  
  55.   getrusage (RUSAGE_SELF, &self);
  56.   getrusage (RUSAGE_CHILDREN, &kids);    /* terminated child processes */
  57.  
  58.   print_timeval (&self.ru_utime);
  59.   putchar (' ');
  60.   print_timeval (&self.ru_stime);
  61.   putchar ('\n');
  62.   print_timeval (&kids.ru_utime);
  63.   putchar (' ');
  64.   print_timeval (&kids.ru_stime);
  65.   putchar ('\n');
  66.  
  67. #else /* !HAVE_RESOURCE || !RUSAGE_SELF */
  68. #  if !defined (BrainDeath)
  69.   struct tms t;
  70.  
  71.   no_args (list);
  72.  
  73.   times (&t);
  74.  
  75.   /* As of System V.3, HP-UX 6.5, and other ATT-like systems, this stuff is
  76.      returned in terms of clock ticks (HZ from sys/param.h).  C'mon, guys.
  77.      This kind of stupid clock-dependent stuff is exactly the reason 4.2BSD
  78.      introduced the `timeval' struct. */
  79.  
  80.   print_time_in_hz (t.tms_utime);
  81.   putchar (' ');
  82.   print_time_in_hz (t.tms_stime);
  83.   putchar ('\n');
  84.   print_time_in_hz (t.tms_cutime);
  85.   putchar (' ');
  86.   print_time_in_hz (t.tms_cstime);
  87.   putchar ('\n');
  88. #  endif /* BrainDeath */
  89. #endif /* !HAVE_RESOURCE || !RUSAGE_SELF */
  90.  
  91.   return (EXECUTION_SUCCESS);
  92. }
  93.